🎖️GitЯра🎖️
Node / meshtastic / Meshtastic-Android / files / core / common / src / commonTest / kotlin / org / meshtastic / core / common / util / SequentialJobTest.kt
Displaying Raw • Download
core/common/src/commonTest/kotlin/org/meshtastic/core/common/util/SequentialJobTest.kt 5235b8fc51eb5f46d453effb2deec00bcc6abdbb (5235b8fc) Text, 2.25 KB
T8b949e/*
* Copyright (c) 2026 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
Tff7b72package T7ee787org.meshtastic.core.common.util
Tff7b72import T7ee787kotlinx.coroutines.ExperimentalCoroutinesApi
Tff7b72import T7ee787kotlinx.coroutines.delay
Tff7b72import T7ee787kotlinx.coroutines.test.advanceTimeBy
Tff7b72import T7ee787kotlinx.coroutines.test.runTest
Tff7b72import T7ee787kotlin.test.Test
Tff7b72import T7ee787kotlin.test.assertTrue
Tf0883e@OptInTb4b4b4(Te6edf3ExperimentalCoroutinesApiTff7b72::Te6edf3classTb4b4b4)
Tff7b72class T56d364SequentialJobTest Tb4b4b4{
Tff7b72private Tff7b72val Te6edf3sequentialJob Tff7b72= Te6edf3SequentialJobTb4b4b4(Tb4b4b4)
Tf0883e@Test
Tff7b72fun Td2a8ff`launch cancels previous job`Tb4b4b4(Tb4b4b4) Tff7b72= Te6edf3runTest Tb4b4b4{
Tff7b72var Te6edf3job1Active Tff7b72= Tff7b72false
Tff7b72var Te6edf3job1Cancelled Tff7b72= Tff7b72false
T8b949e// Launch first job
Te6edf3sequentialJobTb4b4b4.Te6edf3launchTb4b4b4(Tff7b72thisTb4b4b4) Tb4b4b4{
Tff7b72try Tb4b4b4{
Te6edf3job1Active Tff7b72= Tff7b72true
Te6edf3delayTb4b4b4(T79c0ff1T79c0ff0T79c0ff0T79c0ff0Tb4b4b4)
Tb4b4b4} Tff7b72finally Tb4b4b4{
Te6edf3job1Cancelled Tff7b72= Tff7b72true
Tb4b4b4}
Tb4b4b4}
Te6edf3advanceTimeByTb4b4b4(T79c0ff1T79c0ff0T79c0ff0Tb4b4b4)
Te6edf3assertTrueTb4b4b4(Te6edf3job1ActiveTb4b4b4, Ta5d6ff"Ta5d6ffJob 1 should be activeTa5d6ff"Tb4b4b4)
T8b949e// Launch second job
Te6edf3sequentialJobTb4b4b4.Te6edf3launchTb4b4b4(Tff7b72thisTb4b4b4) Tb4b4b4{
T8b949e// Do nothing
Tb4b4b4}
Te6edf3advanceTimeByTb4b4b4(T79c0ff1T79c0ff0T79c0ff0Tb4b4b4)
Te6edf3assertTrueTb4b4b4(Te6edf3job1CancelledTb4b4b4, Ta5d6ff"Ta5d6ffJob 1 should be cancelledTa5d6ff"Tb4b4b4)
Tb4b4b4}
Tf0883e@Test
Tff7b72fun Td2a8ff`cancel stops the job`Tb4b4b4(Tb4b4b4) Tff7b72= Te6edf3runTest Tb4b4b4{
Tff7b72var Te6edf3jobActive Tff7b72= Tff7b72false
Tff7b72var Te6edf3jobCancelled Tff7b72= Tff7b72false
Te6edf3sequentialJobTb4b4b4.Te6edf3launchTb4b4b4(Tff7b72thisTb4b4b4) Tb4b4b4{
Tff7b72try Tb4b4b4{
Te6edf3jobActive Tff7b72= Tff7b72true
Te6edf3delayTb4b4b4(T79c0ff1T79c0ff0T79c0ff0T79c0ff0Tb4b4b4)
Tb4b4b4} Tff7b72finally Tb4b4b4{
Te6edf3jobCancelled Tff7b72= Tff7b72true
Tb4b4b4}
Tb4b4b4}
Te6edf3advanceTimeByTb4b4b4(T79c0ff1T79c0ff0T79c0ff0Tb4b4b4)
Te6edf3assertTrueTb4b4b4(Te6edf3jobActiveTb4b4b4, Ta5d6ff"Ta5d6ffJob should be activeTa5d6ff"Tb4b4b4)
Te6edf3sequentialJobTb4b4b4.Te6edf3cancelTb4b4b4(Tb4b4b4)
Te6edf3advanceTimeByTb4b4b4(T79c0ff1T79c0ff0T79c0ff0Tb4b4b4)
Te6edf3assertTrueTb4b4b4(Te6edf3jobCancelledTb4b4b4, Ta5d6ff"Ta5d6ffJob should be cancelledTa5d6ff"Tb4b4b4)
Tb4b4b4}
Tb4b4b4}
Served by rngit 1.5.0 - Generated in 0.05s